home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gximage1.c < prev    next >
C/C++ Source or Header  |  1997-06-04  |  20KB  |  713 lines

  1. /* Copyright (C) 1989, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gximage1.c */
  20. /* Fast monochrome image rendering */
  21. #include "gx.h"
  22. #include "memory_.h"
  23. #include "gpcheck.h"
  24. #include "gsbittab.h"
  25. #include "gserrors.h"
  26. #include "gxfixed.h"
  27. #include "gxarith.h"
  28. #include "gxmatrix.h"
  29. #include "gsccolor.h"
  30. #include "gspaint.h"
  31. #include "gsutil.h"
  32. #include "gxdevice.h"
  33. #include "gxcmap.h"
  34. #include "gxdcolor.h"
  35. #include "gxistate.h"
  36. #include "gzpath.h"
  37. #include "gxdevmem.h"
  38. #include "gdevmem.h"            /* for mem_mono_device */
  39. #include "gxcpath.h"
  40. #include "gximage.h"
  41. #include "gzht.h"
  42.  
  43. /* Conditionally include statistics code. */
  44. #ifdef DEBUG
  45. #  define STATS
  46. #endif
  47.  
  48. /* ------ Strategy procedure ------ */
  49.  
  50. /* Use special fast logic for portrait or landscape black-and-white images. */
  51. private irender_proc(image_render_simple);
  52. private irender_proc(image_render_landscape);
  53. private irender_proc_t
  54. image_strategy_simple(gx_image_enum *penum)
  55. {    irender_proc_t rproc;
  56.     fixed ox = dda_current(penum->dda.pixel0.x);
  57.     fixed oy = dda_current(penum->dda.pixel0.y);
  58.  
  59.     if ( penum->use_rop || penum->spp != 1 || penum->bps != 1 )
  60.       return 0;
  61.     switch ( penum->posture )
  62.       {
  63.       case image_portrait:
  64.       {    /* Use fast portrait algorithm. */
  65.         long dev_width =
  66.           fixed2long_pixround(ox + penum->x_extent.x) -
  67.             fixed2long_pixround(ox);
  68.  
  69.         if ( dev_width != penum->rect.w )
  70.           {    /* Add an extra align_bitmap_mod of padding so that */
  71.             /* we can align scaled rows with the device. */
  72.             long line_size =
  73.               bitmap_raster(any_abs(dev_width)) + align_bitmap_mod;
  74.  
  75.             if ( penum->adjust != 0 || line_size > max_uint )
  76.               return 0;
  77.             /* Must buffer a scan line. */
  78.             penum->line_width = any_abs(dev_width);
  79.             penum->line_size = (uint)line_size;
  80.             penum->line = gs_alloc_bytes(penum->memory,
  81.                          penum->line_size, "image line");
  82.             if ( penum->line == 0 )
  83.               {    gx_default_end_image(penum->dev, penum, false);
  84.                 return 0;
  85.               }
  86.           }
  87.         if_debug2('b', "[b]render=simple, unpack=copy; rect.w=%d, dev_width=%ld\n",
  88.               penum->rect.w, dev_width);
  89.         rproc = image_render_simple;
  90.         break;
  91.       }
  92.       case image_landscape:
  93.       {    /* Use fast landscape algorithm. */
  94.         long dev_width =
  95.           fixed2long_rounded(oy + penum->x_extent.y) -
  96.             fixed2long_rounded(oy);
  97.         long line_size =
  98.           (dev_width = any_abs(dev_width),
  99.            bitmap_raster(dev_width) * 8 +
  100.            round_up(dev_width, 8) * align_bitmap_mod);
  101.  
  102.         if ( (dev_width != penum->rect.w && penum->adjust != 0) ||
  103.              line_size > max_uint
  104.            )
  105.           return 0;
  106.         /* Must buffer a group of 8N scan lines. */
  107.         penum->line_width = dev_width;
  108.         penum->line_size = (uint)line_size;
  109.         penum->line = gs_alloc_bytes(penum->memory,
  110.                      penum->line_size, "image line");
  111.         if ( penum->line == 0 )
  112.           {    gx_default_end_image(penum->dev, penum, false);
  113.             return 0;
  114.           }
  115.         penum->xi_next = penum->line_xy = fixed2int_var_rounded(ox);
  116.         if_debug3('b', "[b]render=landscape, unpack=copy; rect.w=%d, dev_width=%ld, line_size=%ld\n",
  117.               penum->rect.w, dev_width, line_size);
  118.         rproc = image_render_landscape;
  119.         /* Precompute values needed for rasterizing. */
  120.         penum->dxy =
  121.           float2fixed(penum->matrix.xy + fixed2float(fixed_epsilon) / 2);
  122.         break;
  123.       }
  124.       default:
  125.         return 0;
  126.       }
  127.     /* Precompute values needed for rasterizing. */
  128.     penum->dxx =
  129.       float2fixed(penum->matrix.xx + fixed2float(fixed_epsilon) / 2);
  130.     /* We don't want to spread the samples, */
  131.     /* but we have to reset unpack_bps to prevent the buffer */
  132.     /* pointer from being incremented by 8 bytes */
  133.     /* per input byte. */
  134.     penum->unpack = sample_unpack_copy;
  135.     penum->unpack_bps = 8;
  136.     return rproc;
  137. }
  138.  
  139. void
  140. gs_gximage1_init(gs_memory_t *mem)
  141. {    image_strategies.simple = image_strategy_simple;
  142. }
  143.  
  144. /* ------ Rendering procedures ------ */
  145.  
  146. /*
  147.  * Scale (and possibly reverse) one scan line of a monobit image.
  148.  * This is used for both portrait and landscape image processing.
  149.  * We pass in an x offset (0 <= line_x < align_bitmap_mod * 8) so that
  150.  * we can align the result with the eventual device X.
  151.  *
  152.  * To be precise, the input to this routine is the w bits starting at
  153.  * bit data_x in buffer.  These w bits expand to abs(x_extent) bits,
  154.  * either inverted (zero = 0xff) or not (zero = 0), starting at bit
  155.  * line_x in line which corresponds to coordinate
  156.  * fixed2int_pixround(xcur + min(x_extent, 0)).  Note that the entire
  157.  * bytes containing the first and last output bits are affected: the
  158.  * other bits in those bytes are set to zero (i.e., the value of the
  159.  * 'zero' argument).
  160.  */
  161. #ifdef STATS
  162. struct ix_s {
  163.   long
  164.     calls, all0s, all1s, runs,
  165.     lbit0, byte00, byte01, byte02, byte03, byte04, rbit0,
  166.     lbit1, byte1, rbit1,
  167.     thin, thin2, nwide, bwide, nfill, bfill;
  168. } ix_;
  169. #  define incs(stat) ++ix_.stat
  170. #  define adds(stat, n) ix_.stat += n
  171. #else
  172. #  define incs(stat) DO_NOTHING
  173. #  define adds(stat, n) DO_NOTHING
  174. #endif
  175. private void
  176. image_simple_expand(byte *line, int line_x, uint raster,
  177.   const byte *buffer, int data_x, uint w, fixed xcur, fixed x_extent,
  178.   byte zero /* 0 or 0xff */)
  179. {    int dbitx = data_x & 7;
  180.     byte sbit = 0x80 >> dbitx;
  181.     byte sbitmask = 0xff >> dbitx;
  182.     uint wx = dbitx + w;
  183.     gx_dda_fixed xl;
  184.     gx_dda_step_fixed dxx4, dxx8, dxx16, dxx24, dxx32;
  185.     register const byte *psrc = buffer + (data_x >> 3);
  186.     /*
  187.      * The following 3 variables define the end of the input data row.
  188.      * We would put them in a struct, except that no compiler that we
  189.      * know of will optimize individual struct members as though they
  190.      * were simple variables (e.g., by putting them in registers).
  191.      *
  192.      * endp points to the byte that contains the bit just beyond the
  193.      * end of the row.  endx gives the bit number of this bit within
  194.      * the byte, with 0 being the *least* significant bit.  endbit is
  195.      * a mask for this bit.
  196.      */
  197.     const byte *endp = psrc + (wx >> 3);
  198.     int endx = ~wx & 7;
  199.     byte endbit = 1 << endx;
  200.     /*
  201.      * The following 3 variables do the same for start of the last run
  202.      * of the input row (think of it as a pointer to just beyond the
  203.      * end of the next-to-last run).
  204.      */
  205.     const byte *stop = endp;
  206.     int stopx;
  207.     byte stopbit = endbit;
  208.     byte data;
  209.     byte one = ~zero;
  210.     fixed xl0;
  211.  
  212.     if ( w == 0 )
  213.       return;
  214.     incs(calls);
  215.  
  216. #define fill_row(value)\
  217.   memset(line + (line_x >> 3), value, raster - (line_x >> 3))
  218.  
  219.     /* Scan backward for the last transition. */
  220.     if ( stopbit == 0x80 )
  221.       --stop, stopbit = 1;
  222.     else
  223.       stopbit <<= 1;
  224.     /* Now (stop, stopbit) give the last bit of the row. */
  225.     { byte stopmask = -stopbit << 1;
  226.       byte last = *stop;
  227.  
  228.       if ( stop == psrc )    /* only 1 input byte */
  229.         stopmask &= sbitmask;
  230.       if ( last & stopbit )
  231.         { /* The last bit is a 1: look for a 0-to-1 transition. */
  232.           if ( ~last & stopmask )
  233.         { /* Transition in last byte. */
  234.           last |= stopbit - 1;
  235.         }
  236.           else
  237.         { /* No transition in the last byte. */
  238.           while ( stop > psrc && stop[-1] == 0xff )
  239.             --stop;
  240.           if ( stop == psrc ||
  241.                (stop == psrc + 1 && !(~*psrc & sbitmask))
  242.              )
  243.             { /* The input is all 1s.  Clear the row and exit. */
  244.               incs(all1s);
  245.               fill_row(one);
  246.               return;
  247.             }
  248.           last = *--stop;
  249.         }
  250.           stopx = byte_bit_run_length_0[byte_reverse_bits[last]] - 1;
  251.         }
  252.       else
  253.         { /* The last bit is a 0: look for a 1-to-0 transition. */
  254.           if ( last & stopmask )
  255.         { /* Transition in last byte. */
  256.           last &= -stopbit;
  257.         }
  258.           else
  259.         { /* No transition in the last byte. */
  260.           while ( stop > psrc && stop[-1] == 0 )
  261.             --stop;
  262.           if ( stop == psrc ||
  263.                (stop == psrc + 1 && !(*psrc & sbitmask))
  264.              )
  265.             { /* The input is all 0s.  Clear the row and exit. */
  266.               incs(all0s);
  267.               fill_row(zero);
  268.               return;
  269.             }
  270.           last = *--stop;
  271.         }
  272.           stopx =
  273.         byte_bit_run_length_0[byte_reverse_bits[last ^ 0xff]] - 1;
  274.         }
  275.       if ( stopx < 0 )
  276.         stopx = 7, ++stop;
  277.       stopbit = 1 << stopx;
  278.     }
  279.  
  280.     /* Pre-clear the row. */
  281.     fill_row(zero);
  282. #undef fill_row
  283.  
  284.     /* Set up the DDAs. */
  285.     xl0 =
  286.       (x_extent >= 0 ?
  287.        fixed_fraction(fixed_pre_pixround(xcur)) :
  288.        fixed_fraction(fixed_pre_pixround(xcur + x_extent)) - x_extent);
  289.     xl0 += int2fixed(line_x);
  290.     dda_init(xl, xl0, x_extent, w);
  291.     dxx4 = xl.step;
  292.     dda_step_add(dxx4, xl.step);
  293.     dda_step_add(dxx4, dxx4);
  294.     dxx8 = dxx4;
  295.     dda_step_add(dxx8, dxx4);
  296.     dxx16 = dxx8;
  297.     dda_step_add(dxx16, dxx8);
  298.     dxx24 = dxx16;
  299.     dda_step_add(dxx24, dxx8);
  300.     dxx32 = dxx24;
  301.     dda_step_add(dxx32, dxx8);
  302.  
  303.     /*
  304.      * Loop invariants:
  305.      *    data = *psrc;
  306.      *    sbit = 1 << n, 0<=n<=7.
  307.      */
  308.     for ( data = *psrc; ; )
  309.     {    int x0, n, bit;
  310.         byte *bp;
  311.         static const byte lmasks[9] =
  312.          { 0xff, 0x7f, 0x3f, 0x1f, 0xf, 7, 3, 1, 0 };
  313.         static const byte rmasks[9] =
  314.          { 0, 0x80, 0xc0, 0xe0, 0xf0, 0xf8, 0xfc, 0xfe, 0xff };
  315.  
  316.         incs(runs);
  317.  
  318.         /* Scan a run of zeros. */
  319.         data ^= 0xff;            /* invert */
  320.         while ( data & sbit )
  321.         {    dda_next(xl);
  322.             sbit >>= 1;
  323.             incs(lbit0);
  324.         }
  325.         if ( !sbit )
  326.         {    /* Scan a run of zero bytes. */
  327. sw:            if ( (data = psrc[1]) != 0 )
  328.               {    psrc++;
  329.                 incs(byte00);
  330.               }
  331.             else if ( (data = psrc[2]) != 0 )
  332.               {    dda_state_next(xl.state, dxx8);
  333.                 psrc += 2;
  334.                 incs(byte01);
  335.               }
  336.             else if ( (data =psrc[3]) != 0 )
  337.               {    dda_state_next(xl.state, dxx16);
  338.                 psrc += 3;
  339.                 incs(byte02);
  340.               }
  341.             else if ( (data = psrc[4]) != 0 )
  342.               {    dda_state_next(xl.state, dxx24);
  343.                 psrc += 4;
  344.                 incs(byte03);
  345.               }
  346.             else
  347.               {    dda_state_next(xl.state, dxx32);
  348.                 psrc += 4;
  349.                 incs(byte04);
  350.                 goto sw;
  351.               }
  352.             if ( data > 0xf )
  353.               sbit = 0x80;
  354.             else
  355.               { sbit = 0x08;
  356.                 dda_state_next(xl.state, dxx4);
  357.               }
  358.             data ^= 0xff;        /* invert */
  359.             while ( data & sbit )
  360.             {    dda_next(xl);
  361.                 sbit >>= 1;
  362.                 incs(rbit0);
  363.             }
  364.         }
  365.         x0 = dda_current_fixed2int(xl);
  366.         if ( psrc >= stop && sbit == stopbit )
  367.           { /* We've scanned the last run of 0s. */
  368.             /* Prepare to fill the final run of 1s. */
  369.             n = fixed2int(xl0 + x_extent) - x0;
  370.           }
  371.         else
  372.           { /* Scan a run of ones. */
  373.             /* We know the current bit is a one. */
  374.             data ^= 0xff;            /* un-invert */
  375.             do
  376.               { dda_next(xl);
  377.             sbit >>= 1;
  378.             incs(lbit1);
  379.               }
  380.             while ( data & sbit );
  381.             if ( !sbit )
  382.               { /* Scan a run of 0xff bytes. */
  383.             while ( (data = *++psrc) == 0xff )
  384.               { dda_state_next(xl.state, dxx8);
  385.                 incs(byte1);
  386.               }
  387.             if ( data < 0xf0 )
  388.               sbit = 0x80;
  389.             else
  390.               { sbit = 0x08;
  391.                 dda_state_next(xl.state, dxx4);
  392.               }
  393.             while ( data & sbit )
  394.               { dda_next(xl);
  395.                 sbit >>= 1;
  396.                 incs(rbit1);
  397.               }
  398.               }
  399.             n = dda_current_fixed2int(xl) - x0;
  400.           }
  401.  
  402.         /* Fill the run in the scan line. */
  403.         if ( n < 0 )
  404.           x0 += n, n = -n;
  405.         bp = line + (x0 >> 3);
  406.         bit = x0 & 7;
  407.         if ( (n += bit) <= 8 )
  408.           {    *bp ^= lmasks[bit] - lmasks[n];
  409.             incs(thin);
  410.           }
  411.         else if ( (n -= 8) <= 8 )
  412.           {    *bp ^= lmasks[bit];
  413.             bp[1] ^= rmasks[n];
  414.             incs(thin2);
  415.           }
  416.         else
  417.           {    *bp++ ^= lmasks[bit];
  418.             if ( n >= 56 )
  419.             {    int nb = n >> 3;
  420.                 memset(bp, one, nb);
  421.                 bp += nb;
  422.                 incs(nwide);
  423.                 adds(bwide, nb);
  424.             }
  425.             else
  426.             {    adds(bfill, n >> 3);
  427.                 while ( (n -= 8) >= 0 )
  428.                   *bp++ = one;
  429.                 incs(nfill);
  430.             }
  431.             *bp ^= rmasks[n & 7];
  432.           }
  433.         if ( psrc >= stop && sbit == stopbit )
  434.           break;
  435.     }
  436. }
  437.  
  438. /* Copy one rendered scan line to the device. */
  439. /* We may expand this (or its fastest case) inline someday. */
  440. private int
  441. copy_portrait(gx_image_enum *penum, const byte *data, int dx, int raster,
  442.   int x, int y, int w, int h, gx_device *dev)
  443. {    const gx_device_color *pdc0;
  444.     const gx_device_color *pdc1;
  445.     uint align = alignment_mod(data, align_bitmap_mod);
  446.  
  447.     /*
  448.      * We know that the lookup table maps 1 bit to 1 bit,
  449.      * so it can only have 2 states: straight-through or invert.
  450.      */
  451.     if ( penum->map[0].table.lookup4x1to32[0] )
  452.       pdc0 = &penum->icolor1, pdc1 = &penum->icolor0;
  453.     else
  454.       pdc0 = &penum->icolor0, pdc1 = &penum->icolor1;
  455.     data -= align;
  456.     dx += align << 3;
  457.     if ( gx_dc_is_pure(pdc0) && gx_dc_is_pure(pdc1) )
  458.       { /* Just use copy_mono. */
  459.         dev_proc_copy_mono((*copy_mono)) =
  460.           (h == 1 || (raster & (align_bitmap_mod - 1)) == 0 ?
  461.            dev_proc(dev, copy_mono) : gx_copy_mono_unaligned);
  462.         return (*copy_mono)
  463.           (dev, data, dx, raster, gx_no_bitmap_id,
  464.            x, y, w, h, pdc0->colors.pure, pdc1->colors.pure);
  465.       }
  466.     /* At least one color isn't pure; use its fill_masked procedure. */
  467.     { const gx_device_color *pdc;
  468.       bool invert;
  469.  
  470. #define dc_is_null(pdc)\
  471.   (gx_dc_is_pure(pdc) && (pdc)->colors.pure == gx_no_color_index)
  472.       if ( dc_is_null(pdc1) )
  473.         { pdc = pdc0;
  474.           invert = true;
  475.         }
  476.       else
  477.         { if ( !dc_is_null(pdc0) )
  478.             { int code = gx_device_color_fill_rectangle
  479.             (pdc0, x, y, w, h, dev, lop_default, NULL);
  480.           if ( code < 0 )
  481.             return code;
  482.         }
  483.           pdc = pdc1;
  484.           invert = false;
  485.         }
  486.       return (*pdc->type->fill_masked)
  487.         (pdc, data, dx, raster, gx_no_bitmap_id, x, y, w, h,
  488.          dev, lop_default, invert);
  489. #undef dc_is_null
  490.     }
  491. }
  492.  
  493. /* Rendering procedure for a monobit image with no */
  494. /* skew or rotation and pure colors. */
  495. private int
  496. image_render_simple(gx_image_enum *penum, const byte *buffer, int data_x,
  497.   uint w, int h, gx_device *dev)
  498. {    dev_proc_copy_mono((*copy_mono)) = dev_proc(dev, copy_mono);
  499.     const fixed dxx = penum->dxx;
  500.     const byte *line;
  501.     uint line_width, line_size;
  502.     int line_x;
  503.     fixed xcur = dda_current(penum->dda.pixel0.x);
  504.     int ix = fixed2int_pixround(xcur);
  505.     const int iy = penum->yci, ih = penum->hci;
  506.     int dy;
  507. #define pdc0 (&penum->icolor0)
  508. #define pdc1 (&penum->icolor1)
  509.  
  510.     if ( h == 0 )
  511.       return 0;
  512.     if ( penum->line == 0 )
  513.     {    /* A direct BitBlt is possible. */
  514.         line = buffer;
  515.         line_size = (w + 7) >> 3;
  516.         line_width = w;
  517.         line_x = 0;
  518.     }
  519.     else if ( copy_mono == mem_mono_device.std_procs.copy_mono &&
  520.           dxx > 0 && gx_dc_is_pure(pdc1) && gx_dc_is_pure(pdc0) &&
  521.           /* We know the colors must be (0,1) or (1,0). */
  522.           (pdc0->colors.pure ^ pdc1->colors.pure) == 1 &&
  523.           !penum->clip_image
  524.         )
  525.       {    /* Do the operation directly into the memory device bitmap. */
  526.         int ixr = fixed2int_pixround(xcur + w * dxx) - 1;
  527.         int line_ix;
  528.         int ib_left = ix >> 3, ib_right = ixr >> 3;
  529.         byte *scan_line = scan_line_base((gx_device_memory *)dev, iy);
  530.         byte save_left, save_right, mask;
  531.  
  532.         line_x = ix & (align_bitmap_mod * 8 - 1);
  533.         line_ix = ix - line_x;
  534.         line_size = (ixr >> 3) + 1 - (line_ix >> 3);
  535.         line_width = ixr + 1 - ix;
  536.         /* We must save and restore any unmodified bits in */
  537.         /* the two edge bytes. */
  538.         save_left = scan_line[ib_left];
  539.         save_right = scan_line[ib_right];
  540.         image_simple_expand(scan_line + (line_ix >> 3), line_x,
  541.                     line_size, buffer, data_x, w, xcur,
  542.                     penum->x_extent.x,
  543.                     ((pdc0->colors.pure == 0) !=
  544.                      (penum->map[0].table.lookup4x1to32[0] == 0) ?
  545.                      0xff : 0));
  546.         if ( ix & 7 )
  547.           mask = (byte)(0xff00 >> (ix & 7)),
  548.           scan_line[ib_left] =
  549.             (save_left & mask) + (scan_line[ib_left] & ~mask);
  550.         if ( (ixr + 1) & 7 )
  551.           mask = (byte)(0xff00 >> ((ixr + 1) & 7)),
  552.           scan_line[ib_right] =
  553.             (scan_line[ib_right] & mask) + (save_right & ~mask);
  554.         if ( ih <= 1 )
  555.           return 1;
  556.         /****** MAY BE UNALIGNED ******/
  557.         line = scan_line + (line_ix >> 3);
  558.         if ( dxx < 0 )
  559.           ix -= line_width;
  560.         for ( dy = 1; dy < ih; dy++ )
  561.           { int code = (*copy_mono)(dev, line, line_x, line_size,
  562.                         gx_no_bitmap_id,
  563.                         ix, iy + dy, line_width, 1,
  564.                         (gx_color_index)0,
  565.                         (gx_color_index)1);
  566.             if ( code < 0 )
  567.               return code;
  568.           }
  569.         return 0;
  570.       }
  571.     else
  572.       {    line = penum->line;
  573.         line_size = penum->line_size;
  574.         line_width = penum->line_width;
  575.         line_x = ix & (align_bitmap_mod * 8 - 1);
  576.         image_simple_expand(penum->line, line_x, line_size,
  577.                     buffer, data_x, w, xcur,
  578.                     penum->x_extent.x, 0);
  579.       }
  580.  
  581.     /* Finally, transfer the scan line to the device. */
  582.     if ( dxx < 0 )
  583.       ix -= line_width;
  584.     for ( dy = 0; dy < ih; dy++ )
  585.       { int code = copy_portrait(penum, line, line_x, line_size,
  586.                      ix, iy + dy, line_width, 1, dev);
  587.         if ( code < 0 )
  588.           return code;
  589.       }
  590.  
  591.     return 1;
  592. #undef pdc0
  593. #undef pdc1
  594. }
  595.  
  596. /* Rendering procedure for a 90 degree rotated monobit image */
  597. /* with pure colors.  We buffer and then flip 8 scan lines at a time. */
  598. private int copy_landscape(P5(gx_image_enum *, int, int, bool, gx_device *));
  599. private int
  600. image_render_landscape(gx_image_enum *penum, const byte *buffer, int data_x,
  601.   uint w, int h, gx_device *dev)
  602. {    byte *line = penum->line;
  603.     uint raster = bitmap_raster(penum->line_width);
  604.     int ix = penum->xci, iw = penum->wci;
  605.     int xinc, xmod;
  606.     byte *row;
  607.     const byte *orig_row = 0;
  608.     bool y_neg = penum->dxy < 0;
  609.  
  610.     if ( is_fneg(penum->matrix.yx) )
  611.       ix += iw, iw = -iw, xinc = -1;
  612.     else
  613.       xinc = 1;
  614.     /*
  615.      * Because of clipping, there may be discontinuous jumps in the
  616.      * values of ix (xci).  If this happens, flush the flipping buffer.
  617.      */
  618.     if ( ix != penum->xi_next )
  619.       { int xi = penum->xi_next;
  620.         int code =
  621.           (xinc > 0 ?
  622.            copy_landscape(penum, penum->line_xy, xi, y_neg, dev) :
  623.            copy_landscape(penum, xi, penum->line_xy, y_neg, dev));
  624.  
  625.         if ( code < 0 )
  626.           return code;
  627.         penum->line_xy = ix;
  628.       }
  629.     if ( h != 0 )
  630.       {    for ( ; iw != 0; iw -= xinc )
  631.           {    if ( xinc < 0 )
  632.               --ix;
  633.             xmod = ix & 7;
  634.             row = line + xmod * raster;
  635.             if ( orig_row == 0 )
  636.               { image_simple_expand(row, 0, raster,
  637.                     buffer, data_x, w,
  638.                     dda_current(penum->dda.pixel0.y),
  639.                     penum->x_extent.y, 0);
  640.                 orig_row = row;
  641.               }
  642.             else
  643.               memcpy(row, orig_row, raster);
  644.             if ( xinc > 0 )
  645.               {    ++ix;
  646.                 if ( xmod == 7 )
  647.                   {    int code =
  648.                       copy_landscape(penum,
  649.                              penum->line_xy, ix,
  650.                              y_neg, dev);
  651.                     if ( code < 0 )
  652.                       return code;
  653.                     orig_row = 0;
  654.                     penum->line_xy = ix;
  655.                   }
  656.               }
  657.             else
  658.               {    if ( xmod == 0 )
  659.                   {    int code =
  660.                       copy_landscape(penum, ix,
  661.                              penum->line_xy,
  662.                              y_neg, dev);
  663.                     if ( code < 0 )
  664.                       return code;
  665.                     orig_row = 0;
  666.                     penum->line_xy = ix;
  667.                   }
  668.               }
  669.           }
  670.         penum->xi_next = ix;
  671.         return 0;
  672.       }
  673.     else
  674.       {    /* Put out any left-over bits. */
  675.         return
  676.           (xinc > 0 ?
  677.            copy_landscape(penum, penum->line_xy, ix, y_neg, dev) :
  678.            copy_landscape(penum, ix, penum->line_xy, y_neg, dev));
  679.       }
  680. }
  681.  
  682. /* Flip and copy one group of scan lines. */
  683. private int
  684. copy_landscape(gx_image_enum *penum, int x0, int x1, bool y_neg,
  685.   gx_device *dev)
  686. {    byte *line = penum->line;
  687.     uint line_width = penum->line_width;
  688.     uint raster = bitmap_raster(line_width);
  689.     byte *flipped = line + raster * 8;
  690.     int w = x1 - x0;
  691.     int y = fixed2int_pixround(dda_current(penum->dda.pixel0.y));
  692.  
  693.     if ( w == 0 || line_width == 0 )
  694.       return 0;
  695.     /* Flip the buffered data from raster x 8 to align_bitmap_mod x */
  696.     /* line_width. */
  697.     if ( line_width > 0 )
  698.     {    int i;
  699.         for ( i = (line_width - 1) >> 3; i >= 0; --i )
  700.           memflip8x8(line + i, raster,
  701.                  flipped + (i << (log2_align_bitmap_mod + 3)),
  702.                  align_bitmap_mod);
  703.     }
  704.  
  705.     /* Transfer the scan lines to the device. */
  706.     if ( w < 0 )
  707.       x0 = x1, w = -w;
  708.     if ( y_neg )
  709.       y -= line_width;
  710.     return copy_portrait(penum, flipped, x0 & 7, align_bitmap_mod,
  711.                  x0, y, w, line_width, dev);
  712. }
  713.